<extmacro> : Run External Macro

Runs macro saved in external text file.  This command can be used for sharing macros among local network users (if the macro files are saved on a network drive accessible by multiple users.)

Syntax:

<extmacro>("MacroFile", Clipboard)

MacroFile
Name of the macro to run.  (The macro name should be unique if it is run from other macros using <run> command).

Clipboard
If 1, the text from the
MacroFile is inserted to the active window through the clipboard.  (This option is intended only for plain text with no commands.)
If 0, the macro from the
MacroFile
is played back the same way as it was regular macro.

Example:

<#> This macro starts macro from external file.
<#>
<cmds>
<extmacro>("%_vMacroFileFolder%Samples\Simple form example.mcr",0)